home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 25 / Cream of the Crop 25.iso / bbs / con_005c.zip / CONCORD.RAR / SCRIPT.RAR / GOODBYE.SCR < prev    next >
Text File  |  1997-04-25  |  675b  |  22 lines

  1. ; GOODBYE.SCR : Logoff script
  2. ;
  3. ; Automatically called when user wants to normally log off from the BBS.
  4. ;
  5. ; * Ask to download files still left in the download queue.
  6. ; * Display GOODBYE.ANS
  7.  
  8. ; If user has tagged files, ask if wants to transfer them before logging off
  9. ;
  10. IF (@TAGFILES_COUNT@ > 0)
  11.   WRITE "^C12,0;^M;You have ^C14,0;@TAGFILES_COUNT@ ^C12,0;files (^C14,0;@TAGFILES_SIZE@ ^C12,0;bytes) still left in your download queue.^M;"
  12.   WRITE "^C15,0;Do you want to download them first before logging off? (~1Y/~2n)^W;^M;"
  13.   IF (@ANSWER@ = 1)
  14.     ;download file(s)
  15.     MENUTYPE 1011
  16.   END
  17. END
  18. ;
  19. ; Display GOODBYE.ANS to user
  20. ;
  21. MENUTYPE 5 GOODBYE.ANS
  22.